índice en lenguaje natural - translation to spanish
Diclib.com
ChatGPT AI Dictionary
Enter a word or phrase in any language 👆
Language:

Translation and analysis of words by ChatGPT artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

índice en lenguaje natural - translation to spanish

LENGUAJE DE PROGRAMACIÓN
NATURAL; Lenguaje de programacion Natural; Lenguaje de programación Natural; Natural (lenguaje de programacion)

natural         
= natural, effortless, natural-born, native, naturally-occurring.
Ex: Also, title entries were ordered by grammatical arrangement, rather than in natural word order.
Ex: The effortless ease of such replies does conceal from the enquirer the extensive anticipatory effort of the librarian in studying the sources of information and his prior experience in their use.
Ex: Giving a natural-born leader a new book to read for himself will mean that, if he likes it, very soon other children in the group will be wanting to read it too = Dar a un líder nato un nuevo libro para que lo lea por su cuenta significa que, si le gusta, muy pronto otros niños del grupo querrán leerlo también.
Ex: Malcolm Stanhope, also a native of the state, entered the library field at the age of 30, after having been a computer salesman for eight years.
Ex: This is a naturally-occurring abrasive traditionally employed in buffing metal.
----
* a escala natural = full-scale.
* alimentos naturales = health food.
* catástrofe natural = natural calamity, natural disaster.
* ciencias naturales = natural sciences.
* como algo natural = as a matter of course.
* consecuencia natural = corollary.
* defensas naturales = natural defences.
* derecho natural = natural right, natural law.
* desastre natural = natural disaster, natural calamity.
* de un modo poco natural = unnaturally.
* en su estado natural = in the wild.
* entorno natural = natural setting.
* entorno natural, el = natural environment, the.
* fibra natural = natural fibre.
* formar parte natural de su entorno = blend into + the landscape.
* gas natural = natural gas.
* habilidad natural = natural ability.
* hábitat natural = wildlife habitat.
* iluminación natural = natural lighting.
* lenguaje de indización natural = natural indexing language.
* lenguaje natural = natural language.
* luz natural = natural daylight, natural light.
* madre o padre natural = birth parent.
* mes natural = calendar month.
* mirador natural = belvedere.
* morir de muerte natural = die + a natural death.
* muerte natural = natural death.
* museo de ciencias naturales = natural science museum.
* natural del país = native-born.
* paraje natural = wildland.
* parque natural = nature park.
* poco natural = unnatural, stilted.
* producto natural = natural product.
* recursos de gas natural = natural gas resources.
* reserva natural = nature reserve, nature preserve, wildlife preserve.
* ser algo natural para = be second nature to + Pronombre, come + naturally to.
* ser natural de = be a native of.
* sobrenatural, lo = supernatural, the.
* sopa natural = fresh soup.
* tendencia natural = in-built tendency.
* término del lenguaje natural = natural-language term.
* ventilación natural = natural ventilation.
natural         
natural
flesh
native
nature
artless
ingenious
disposition
natural         
natural, native; lifelike; fresh; simple, easy; plain

Definition

índice cefálico
term. comp.
Anatomía. Relación entre la anchura y la longitud máxima del cráneo.

Wikipedia

Natural (lenguaje de programación)

NATURAL es un lenguaje de cuarta generación de Software AG.

Código del programa ¡Hola Mundo! en NATURAL:

WRITE '¡Hola Mundo!'
END

Tiene la sentencia de control de flujo "ESCAPE TOP", la cual es similar a "continue" en C, o "Continue For" en "Visual Basic.NET 2005", excepto que también funciona dentro de una subrutina para retornar desde la misma y continuar con la siguiente iteración del bucle de proceso.

Como "continue", evita gran número de identaciones cuando se usan bloques anidados de instrucciones dentro de cualquier sentencia de tipo bucle.

Ejemplo con ESCAPE TOP:

DEFINE DATA LOCAL
1 I (N3)                                   /* 3 dígitos, sin decimales
END-DEFINE
FOR I = 2 TO 100
  IF (I / 2 * 2) = I AND I > 2
    WRITE 'Número' I 'es divisible entre 2'
    ESCAPE TOP
  END-IF
  IF (I / 3 * 3) = I AND I > 3
    WRITE 'Número' I 'es divisible entre 3'
    ESCAPE TOP
  END-IF
  IF (I / 5 * 5) = I AND I > 5
    WRITE 'Número' I 'es divisible entre 5'
    ESCAPE TOP
  END-IF
  IF (I / 7 * 7) = I AND I > 7
    WRITE 'Número' I 'es divisible entre 7'
    ESCAPE TOP
  END-IF
  IF (I / 11 * 11) = I AND I > 11
    WRITE 'Número' I 'es divisible entre 11'
    ESCAPE TOP
  END-IF
  WRITE 'Número' I 'es primo'
END-FOR
END

Los niveles de sangría pueden ser ajustados automáticamente con el comando STRUCT dentro del Editor de NATURAL.

El mismo ejemplo, sin ESCAPE TOP:

DEFINE DATA LOCAL
1 I (N3)  /* 3 dígitos, sin decimales
END-DEFINE
FOR I = 2 TO 100
  IF (I / 2 * 2) = I AND I > 2
    WRITE 'Número' I 'es divisible entre 2'
  ELSE
    IF (I / 3 * 3) = I AND I > 3
      WRITE 'Número' I 'es divisible entre 3'
    ELSE
      IF (I / 5 * 5) = I AND I > 5
        WRITE 'Número' I 'es divisible entre 5'
      ELSE
        IF (I / 7 * 7) = I AND I > 7
          WRITE 'Número' I 'es divisible entre 7'
        ELSE
          IF (I / 11 * 11) = I AND I > 11
            WRITE 'Número' I 'es divisible entre 11'
          ELSE
            WRITE 'Número' I 'es primo'
          END-IF
        END-IF
      END-IF
    END-IF
  END-IF
END-FOR
END